home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / db / RCS / Db_Put.c,v < prev    next >
Text File  |  1989-01-13  |  4KB  |  191 lines

  1. head     1.5;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.5
  10. date     89.01.13.11.44.28;  author douglis;  state Exp;
  11. branches ;
  12. next     1.4;
  13.  
  14. 1.4
  15. date     89.01.02.13.42.33;  author douglis;  state Exp;
  16. branches ;
  17. next     1.3;
  18.  
  19. 1.3
  20. date     88.09.22.22.12.04;  author douglis;  state Exp;
  21. branches ;
  22. next     1.2;
  23.  
  24. 1.2
  25. date     88.09.13.16.49.06;  author douglis;  state Exp;
  26. branches ;
  27. next     1.1;
  28.  
  29. 1.1
  30. date     88.08.14.15.08.37;  author douglis;  state Exp;
  31. branches ;
  32. next     ;
  33.  
  34.  
  35. desc
  36. @Procedure to write a record into a database.
  37. @
  38.  
  39.  
  40. 1.5
  41. log
  42. @changed for buffering and for new arg passing to lock routine.
  43. [generic checkin msg].
  44. @
  45. text
  46. @/* 
  47.  * Db_Put.c --
  48.  *
  49.  *    Source code for the Db_Put procedure.
  50.  *
  51.  * Copyright 1988 Regents of the University of California
  52.  * Permission to use, copy, modify, and distribute this
  53.  * software and its documentation for any purpose and without
  54.  * fee is hereby granted, provided that the above copyright
  55.  * notice appear in all copies.  The University of California
  56.  * makes no representations about the suitability of this
  57.  * software for any purpose.  It is provided "as is" without
  58.  * express or implied warranty.
  59.  */
  60.  
  61. #ifndef lint
  62. static char rcsid[] = "$Header: /sprite/src/lib/c/db/RCS/Db_Put.c,v 1.4 89/01/02 13:42:33 douglis Exp Locker: douglis $ SPRITE (Berkeley)";
  63. #endif not lint
  64.  
  65.  
  66. #include <db.h>
  67. #include "dbInt.h"
  68.  
  69.  
  70. /*
  71.  *----------------------------------------------------------------------
  72.  *
  73.  * Db_Put --
  74.  *
  75.  *    Write a random entry, or the next entry in order, given the handle
  76.  *    for a database.
  77.  *
  78.  * Results:
  79.  *    -1 indicates an error, in which case errno indicates more details.
  80.  *    0 indicates success.
  81.  *
  82.  * Side effects:
  83.  *    The position in the file is updated, and data are written to the file.
  84.  *
  85.  *----------------------------------------------------------------------
  86.  */
  87.  
  88. int
  89. Db_Put(handlePtr, bufPtr, index)
  90.     Db_Handle *handlePtr;
  91.     char *bufPtr;
  92.     int index;                /* -1 to indicate next in order */
  93. {
  94.     register int streamID;
  95.     int bufSize;
  96.     int offset;
  97.     int bytesWritten;
  98.     int status;
  99.  
  100.     streamID = handlePtr->streamID;
  101.     bufSize = handlePtr->structSize;
  102.     if (handlePtr->lockWhen == DB_LOCK_ACCESS) {
  103.     status = DbLockDesc(handlePtr);
  104.     if (status == -1) {
  105.         return(status);
  106.     }
  107.     }
  108.     if (index == -1) {
  109.     index = handlePtr->index;
  110.     } else {
  111.     offset = index * bufSize;
  112.     status = lseek(streamID, (long) offset, L_SET);
  113.     if (status == -1) {
  114.         return(status);
  115.     }
  116.     }
  117.     bytesWritten = write(streamID, bufPtr, bufSize);
  118.     if (bytesWritten == -1) {
  119.     status = -1;
  120.     } else if (bytesWritten != bufSize) {
  121.     status = -1;
  122.     errno = 0;
  123.     } else {
  124.     status = 0;
  125.     }
  126.     handlePtr->index = index + 1;
  127.     if (handlePtr->lockWhen == DB_LOCK_ACCESS ||
  128.     handlePtr->lockWhen == DB_LOCK_READ_MOD_WRITE) {
  129.     (void) flock(streamID, LOCK_EX | LOCK_UN);
  130.     }
  131.     return(status);
  132. }
  133. @
  134.  
  135.  
  136. 1.4
  137. log
  138. @added a lock type DB_LOCK_READ_MOD_WRITE.
  139. @
  140. text
  141. @d17 1
  142. a17 1
  143. static char rcsid[] = "$Header: /sprite/src/lib/c/db/RCS/Db_Put.c,v 1.3 88/09/22 22:12:04 douglis Exp Locker: douglis $ SPRITE (Berkeley)";
  144. d58 1
  145. a58 2
  146.     status = DbLockDesc(streamID, handlePtr->lockType,
  147.                  handlePtr->lockHow);
  148. @
  149.  
  150.  
  151. 1.3
  152. log
  153. @Changed some arg. orders, var. names, and Db_LockDesc to DbLockDesc.
  154. @
  155. text
  156. @d17 1
  157. a17 1
  158. static char rcsid[] = "$Header: Db_Put.c,v 1.2 88/09/13 16:49:06 douglis Exp $ SPRITE (Berkeley)";
  159. d83 2
  160. a84 1
  161.     if (handlePtr->lockWhen == DB_LOCK_ACCESS) {
  162. @
  163.  
  164.  
  165. 1.2
  166. log
  167. @fixed some lint.
  168. @
  169. text
  170. @d17 1
  171. a17 1
  172. static char rcsid[] = "$Header: Db_Put.c,v 1.1 88/08/14 15:08:37 douglis Exp $ SPRITE (Berkeley)";
  173. d58 1
  174. a58 1
  175.     status = Db_LockDesc(streamID, handlePtr->lockType,
  176. @
  177.  
  178.  
  179. 1.1
  180. log
  181. @Initial revision
  182. @
  183. text
  184. @d17 1
  185. a17 1
  186. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  187. d68 1
  188. a68 1
  189.     status = lseek(streamID, offset, L_SET);
  190. @
  191.